Css
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.styled-button {
background-color: #4CAF50; /* لون الخلفية */
border: none;
color: white; /* لون النص */
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px; /* حواف دائرية */
transition: background-color 0.3s ease; /* تأثير انتقال سلس */
}
.styled-button:hover {
background-color: #45a049; /* لون الخلفية عند التمرير */
}
نتيجة الكود
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.styled-button {
background-color: #4CAF50; /* لون الخلفية */
border: none;
color: white; /* لون النص */
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px; /* حواف دائرية */
transition: background-color 0.3s ease; /* تأثير انتقال سلس */
}
.styled-button:hover {
background-color: #45a049; /* لون الخلفية عند التمرير */
شرح الكود
شرح اخر تجريبي